/* 通用设置 */
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
  color: #000;
}
ul {
  list-style: none;
}

/* 容器 */
main {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 标题 */
h2 {
  /* font-size: 2rem; */
  /* color: #0b1c7e; */
  /* margin-bottom: 10px; */
  text-align: center;
}

/* 页脚 */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #aaa;
}

/* 标签 */
.tags-part a {
  display: flex;
  flex-direction: column;
}
.tags-li {
  display: inline-block;
  margin: 4px;
  font-size: 14px;
}
.first-line-tag {
  margin-top: 0;
}
.tags-part .tag,
.blog-info .tag {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 3px 8px;
  text-decoration: none;
  color: #333;
}
.tags-part .tag:hover,
.blog-info .tag:hover {
  color: #0b1c7e;
  font-weight: 600;
  box-shadow: 0 0 5px 0 rgba(18, 10, 179, 0.242);
  border: none;
}
/* 插播-博客标签 */
.blog-info .tags {
  display: flex;
  gap: 5px; /* 标签之间的间距 */
}

/* 博客 */
/* blog-gpt */
.blog-item {
  display: flex;
  align-items: flex-start; /* 使图片和文本对齐 */
  /* background-color: #fff; */
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 10px;
}

.blog-cover-wrapper {
  width: 80px; /* 固定宽度 */
  height: 80px; /* 高度与宽度一致，保持正方形 */
  margin-right: 15px; /* 图片和文本之间的间距 */
  position: relative;
}

.blog-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  flex: 1; /* 使内容部分占据剩余空间 */
}

.blog-item h4 {
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}

.blog-item h4 a {
  text-decoration: none;
}

.blog-item h4 a:hover {
  color: #0b1c7e;
  text-decoration: none;
  font-weight: bold;
}

.blog-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
}

.blog-info .date {
  color: #999;
}

/* blog-gpt */
